home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 41 / Amiga Format CD41 (1999-06)(Future Publishing)(GB)[!][issue 1999-07].iso / -seriously_amiga- / graphics / videoeasel / camrexx / soil.rexx < prev    next >
OS/2 REXX Batch file  |  1999-04-19  |  349b  |  16 lines

  1. /* Soil-Rule idea by Toffoli, in CAMRexx by THOR */
  2.  
  3. MakeAlgorithm:
  4.    PLANEALGORITHM moore centers
  5. return
  6.  
  7. MakePlane:
  8.    stable=(n_west | north | n_east) &          ,
  9.           (s_west | south | s_east) &          ,
  10.           (n_west | west  | s_west) &          ,
  11.           (n_east | east  | s_east)
  12.    new=center & stable
  13.    SETPLANE new
  14. return
  15.  
  16.